home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1994 November / Cd Ware (Nro. 2) - Epimundo.iso / DOS / UD / PASZIP.ZIP / UNZIP_PS.BAT < prev    next >
Encoding:
DOS Batch File  |  1994-06-04  |  3.8 KB  |  93 lines

  1. @echo off
  2. goto Start
  3.                             ┌───────────────
  4.                             │  UNZIP_PS.BAT █
  5.                              ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█
  6.  
  7.                        Thu  04-28-1994  22:32:34
  8.                                  edited
  9.                        Sat  06-04-1994  20:51:40
  10.  
  11.      Used to decrypt files encrypted with ZIP_PASS.BAT. Requires
  12.      PKUNZIP.EXE in this directory to do so.
  13.  
  14.      The Command:
  15.  
  16.           PKUNZIP        %1           -s%2            %3
  17.                                                   
  18.          command                     encrypt switch
  19.                    zip file name     & PASSWORD       files to unencrypt
  20.  
  21.      eg:  UNZIP_PS      TEST          JOHN          *.BAT
  22.                                                       (all if not %3, or
  23.                                                       use a List File,
  24.                                                       see below)
  25.      n.b. Password is case sensitive.
  26.  
  27.  
  28.      Can use a List file for argument %3 by:
  29.  
  30.      1.   Making a list file named LIST (or any name I think)
  31.      2.   Using %3 argument as @LIST (or @FileName.txt... etc)
  32.  
  33.      Following is the help text found by using PKUNZIP/? Command.
  34.  
  35.      Took me awhile to figure out how to add a password using the "-s"
  36.      option as there is no space between the option and the password.
  37.      This information is in the 200K file MANUAL.DOC
  38.  
  39.      ────────────────── PKUNZIP.EXE HELP FOLLOWS ──────────────────
  40.  
  41. PKUNZIP (R)    FAST!    Extract Utility    Version 2.04e  01-25-93
  42. Copr. 1989-1993 PKWARE Inc. All Rights Reserved. Shareware Version
  43. PKUNZIP Reg. U.S. Pat. and Tm. Off.
  44.  
  45. Usage:  PKUNZIP [options] zipfile [@list] [files...]
  46.  
  47. -c[m]             extract files to Console [with More]
  48. -d                restore/create Directory structure stored in .ZIP file
  49. -e[c|d|e|n|p|r|s] Extract files.  Sort by [CRC | Date | Extension | Name
  50.                    | Percentage | Reverse | Size]
  51. -f                Freshen files in destination directory
  52. -j|J<h,r,s>       mask|don't mask <Hidden/System/Readonly> files (def.=jhrs)
  53. -n                extract only Newer files
  54. -o                Overwrite previously existing files
  55. -p[a/b][c][#]     extract to Printer [Asc mode,Bin mode,Com port] [port #]
  56. -q                Enable ANSI comments
  57. -s[pwd]           Decrypt with password [If no pwd is given, prompt for pwd]
  58. -t                Test .ZIP file integrity
  59. -v[b][r][m][t]    View .ZIP [Brief][Reverse][More][Technical] sort by [CRC|
  60.   [c,d,e,n,o,p,s] Date|Extension|Name|natural Order(default)|Percentage|Size]
  61. -x<filespec>      eXclude file(s) from extraction
  62. -$                Restore volume label on destination drive
  63. -@listfile        Generate list file
  64.  
  65. :Start
  66. if not exist pkunzip.exe goto Missing
  67. pkunzip %1 -s%2  %3
  68. pause
  69. goto End
  70. :Missing
  71. rem if pkunzip.exe is in your PATH, "rem out" the "if not exist" line
  72. cls
  73. echo.
  74. echo.
  75. echo           █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
  76. echo           █               UNZIP_PS.BAT                 █▒▒
  77. echo           █                                            █▒▒
  78. echo           █  PURPOSE: Decrypt a file, with PKUNZIP.EXE █▒▒
  79. echo           █                                            █▒▒
  80. echo           █                                            █▒▒
  81. echo           █  COMMAND: UNZIP_PS FileName Passwd *.txt   █▒▒
  82. echo           █                                            █▒▒
  83. echo           █                                            █▒▒
  84. echo           █  WARNING:  Can't find PKUNZIP.EXE          █▒▒
  85. echo           █            Can't run this batch file       █▒▒
  86. echo           █                                            █▒▒
  87. echo           █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█▒▒
  88. echo            ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
  89. echo.
  90. echo 
  91. pause
  92. :End
  93.